home *** CD-ROM | disk | FTP | other *** search
/ Best of Shareware / Best of PC Windows Shareware 1.0 - Wayzata Technology (7111) (1993).iso / mac / ZIPPED / DOS / GRAPHICS / POVSRC.ZIP / MACHINE.ZIP / MAC.SIT / POV-Ray.r < prev    next >
Text File  |  1992-05-05  |  1KB  |  60 lines

  1. /*
  2. ==============================================================================
  3. Project:    POV
  4.  
  5. File Name:    POV-Ray.r
  6.  
  7. Description:
  8.     MPW Rez sourcefile.
  9.     This is currently here just to load the precompiled resources
  10.     into the application.
  11.  
  12. Related Files:
  13.     POV.c: Main program file
  14.     POV-Ray.╣.rsrc: What rsrcs get appended
  15.     POV-Ray.make: Who makes me
  16. ------------------------------------------------------------------------------
  17. Author(s):
  18.     Eduard [esp] Schwan
  19. ------------------------------------------------------------------------------
  20. Change History:
  21.     920308    [esp]    Created.
  22.     920415    [esp]    Added QuickTime SC stuff
  23.     920429    [esp]    Removed QuickTime SC stuff and updated header comment refs
  24. ==============================================================================
  25. */
  26.  
  27. // Standard Type Definitions
  28.  
  29. #include "Types.r"
  30. #include "SysTypes.r"
  31.  
  32.  
  33. // Include application resources
  34. // (and NOT the Source Code Mgr (Projector) check ID!)
  35. include "POV.╣.rsrc" not 'ckid';
  36.  
  37.  
  38. // Generated automagically in Think C, so must hide here in MPW C!
  39. resource 'SIZE' (-1, purgeable) {
  40.     reserved,
  41.     acceptSuspendResumeEvents,
  42.     reserved,
  43.     canBackground,
  44.     multiFinderAware,
  45.     backgroundAndForeground,
  46.     dontGetFrontClicks,
  47.     ignoreChildDiedEvents,
  48.     is32BitCompatible,
  49.     isHighLevelEventAware,
  50.     onlyLocalHLEvents,
  51.     notStationeryAware,
  52.     dontUseTextEditServices,
  53.     reserved,
  54.     reserved,
  55.     reserved,
  56.     2048000,
  57.     1024000
  58. };
  59.  
  60.